Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632823 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/124 - Lyrics Search App

preview.PNG cody/swapnilsparsh/30DaysOfJavaScript/124 - Lyrics Search App/preview.PNG
84 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/124 - Lyrics Search App/style.css
96 Views
0 Comments
* {
box-sizing: border-box;
}

body {
background-color: rgb(219, 213, 213);
font-family: Arial, Helvetica, sans-serif;
margin: 0;
index.html cody/swapnilsparsh/30DaysOfJavaScript/124 - Lyrics Search App/index.html
280 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="uts-8">
<title>OLX Clone</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width-device=width,initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
script.js cody/swapnilsparsh/30DaysOfJavaScript/124 - Lyrics Search App/script.js
158 Views
0 Comments
const from = document.getElementById("form");
const search = document.getElementById("search");
const result = document.getElementById("result");
const more = document.getElementById("more");

const apiURL = "https://api.lyrics.ovh";

async function searchSongs(term) {